home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / mui / mui-tools / muiiconupdate / iconupd.mrx < prev    next >
Text File  |  1995-03-09  |  676b  |  45 lines

  1. /*
  2. ** This script shows how to obtain
  3. ** general information on an application.
  4. */
  5.  
  6. options results
  7. address 'ICONUPD.1'
  8.  
  9. 'info title'
  10. title = result
  11.  
  12. 'info author'
  13. author = result
  14.  
  15. 'info copyright'
  16. copyright = result
  17.  
  18. 'info description'
  19. description = result
  20.  
  21. 'info version'
  22. version = result
  23.  
  24. 'info base'
  25. base = result
  26.  
  27. 'source ram:T'
  28. say "Set the source to ram:T"
  29.  
  30. 'toggle tooltypes'
  31. onoff = result
  32. say "Toggled tooltypes gadget"
  33.  
  34. 'query repair'
  35. qonoff = result
  36.  
  37. say "Title......: "title
  38. say "Author.....: "author
  39. say "Copyright..: "copyright
  40. say "Description: "description
  41. say "Version....: "version
  42. say "Basename...: "base
  43. say "Tool Types.: "onoff
  44. say "Repair.....: "qonoff
  45.